home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / zht2.c < prev    next >
C/C++ Source or Header  |  1997-05-05  |  10KB  |  327 lines

  1. /* Copyright (C) 1992, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zht2.c */
  20. /* Level 2 sethalftone operator */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsstruct.h"
  25. #include "gxdevice.h"        /* for gzht.h */
  26. #include "gzht.h"
  27. #include "estack.h"
  28. #include "ialloc.h"
  29. #include "idict.h"
  30. #include "idparam.h"
  31. #include "igstate.h"
  32. #include "icolor.h"
  33. #include "iht.h"
  34. #include "store.h"
  35.  
  36. /* Forward references */
  37. private int dict_spot_params(P4(const ref *, gs_spot_halftone *,
  38.   ref *, ref *));
  39. private int dict_spot_results(P2(ref *, const gs_spot_halftone *));
  40. private int dict_threshold_params(P3(const ref *,
  41.   gs_threshold_halftone *, ref *));
  42.  
  43. /* <dict> <dict5> .sethalftone5 - */
  44. float spot_dummy(P2(floatp, floatp));        /* in zht1.c */
  45. int spot_sample_finish(P1(os_ptr));        /* in zht.c */
  46. private int sethalftone_finish(P1(os_ptr));
  47. private int sethalftone_cleanup(P1(os_ptr));
  48. private int
  49. zsethalftone5(register os_ptr op)
  50. {    uint count;
  51.     gs_halftone_component *phtc;
  52.     gs_halftone_component *pc;
  53.     int code = 0;
  54.     int i, j;
  55.     gs_halftone *pht;
  56.     gx_device_halftone *pdht;
  57.     static const char _ds *color_names[] =
  58.      { gs_ht_separation_name_strings };
  59.     ref sprocs[countof(color_names)];
  60.     ref tprocs[countof(color_names)];
  61.     gs_memory_t *mem;
  62.     int npop = 2;
  63.  
  64.     check_type(*op, t_dictionary);
  65.     check_dict_read(*op);
  66.     check_type(op[-1], t_dictionary);
  67.     check_dict_read(op[-1]);
  68.     count = 0;
  69.     for ( i = 0; i < countof(color_names); i++ )
  70.     {    ref *pvalue;
  71.         if ( dict_find_string(op, color_names[i], &pvalue) > 0 )
  72.             count++;
  73.         else if ( i == gs_ht_separation_Default )
  74.             return_error(e_typecheck);
  75.     }
  76.     mem = (gs_memory_t *)idmemory->spaces.indexed[r_space_index(op - 1)];
  77.     check_estack(5);        /* for sampling Type 1 screens */
  78.     refset_null(sprocs, countof(sprocs));
  79.     refset_null(tprocs, countof(tprocs));
  80.     rc_alloc_struct_0(pht, gs_halftone, &st_halftone,
  81.               imemory, pht = 0, ".sethalftone5");
  82.     phtc = gs_alloc_struct_array(mem, count, gs_halftone_component,
  83.                      &st_ht_component_element,
  84.                      ".sethalftone5");
  85.     rc_alloc_struct_0(pdht, gx_device_halftone, &st_device_halftone,
  86.               imemory, pdht = 0, ".sethalftone5");
  87.     if ( pht == 0 || phtc == 0 || pdht == 0 )
  88.       code = gs_note_error(e_VMerror);
  89.     else
  90.       for ( i = 0, j = 0, pc = phtc; i < countof(color_names); i++ )
  91.     {    int type;
  92.         ref *pvalue;
  93.         if ( dict_find_string(op, color_names[i], &pvalue) > 0 )
  94.         {    check_type_only(*pvalue, t_dictionary);
  95.             check_dict_read(*pvalue);
  96.             if ( dict_int_param(pvalue, "HalftoneType", 1, 5, 0,
  97.                         &type) < 0
  98.                )
  99.               {    code = gs_note_error(e_typecheck);
  100.                 break;
  101.               }
  102.             switch ( type )
  103.             {
  104.             default:
  105.                 code = gs_note_error(e_rangecheck);
  106.                 break;
  107.             case 1:
  108.                 code = dict_spot_params(pvalue,
  109.                     &pc->params.spot, sprocs + j,
  110.                     tprocs + j);
  111.                 pc->params.spot.screen.spot_function =
  112.                     spot_dummy;
  113.                 pc->type = ht_type_spot;
  114.                 break;
  115.             case 3:
  116.                 code = dict_threshold_params(pvalue,
  117.                     &pc->params.threshold, tprocs + j);
  118.                 pc->type = ht_type_threshold;
  119.                 break;
  120.             }
  121.             if ( code < 0 )
  122.                 break;
  123.             pc->cname = (gs_ht_separation_name)i;
  124.             pc++, j++;
  125.         }
  126.     }
  127.     if ( code >= 0 )
  128.       {    /* We think that Type 2 and Type 4 halftones, like */
  129.         /* screens set by setcolorscreen, adapt automatically to */
  130.         /* the device color space, so we need to mark them */
  131.         /* with a different internal halftone type. */
  132.         int type = 0;
  133.  
  134.         dict_int_param(op - 1, "HalftoneType", 1, 5, 0, &type);
  135.         pht->type =
  136.           (type == 2 || type == 4 ? ht_type_multiple_colorscreen :
  137.            ht_type_multiple);
  138.         pht->params.multiple.components = phtc;
  139.         pht->params.multiple.num_comp = count;
  140.         code = gs_sethalftone_prepare(igs, pht, pdht);
  141.       }
  142.     if ( code >= 0 )
  143.       for ( j = 0, pc = phtc; j < count; j++, pc++ )
  144.     {    if ( pc->type == ht_type_spot )
  145.         {    ref *pvalue;
  146.             dict_find_string(op, color_names[pc->cname], &pvalue);
  147.             code = dict_spot_results(pvalue, &pc->params.spot);
  148.             if ( code < 0 )
  149.                 break;
  150.         }
  151.     }
  152.     if ( code >= 0 )
  153.       {    /* Schedule the sampling of any Type 1 screens, */
  154.         /* and any (Type 1 or Type 3) TransferFunctions. */
  155.         /* Save the stack depths in case we have to back out. */
  156.         uint edepth = ref_stack_count(&e_stack);
  157.         uint odepth = ref_stack_count(&o_stack);
  158.         ref odict, odict5;
  159.  
  160.         odict = op[-1];
  161.         odict5 = *op;
  162.         pop(2);  op = osp;
  163.         esp += 5;
  164.         make_mark_estack(esp - 4, es_other, sethalftone_cleanup);
  165.         esp[-3] = odict;
  166.         make_istruct(esp - 2, 0, pht);
  167.         make_istruct(esp - 1, 0, pdht);
  168.         make_op_estack(esp, sethalftone_finish);
  169.         for ( j = 0; j < count; j++ )
  170.           {    gx_ht_order *porder =
  171.               (pdht->components == 0 ? &pdht->order :
  172.                &pdht->components[j].corder);
  173.             switch ( phtc[j].type )
  174.               {
  175.               case ht_type_spot:
  176.                 code = zscreen_enum_init(op, porder,
  177.                     &phtc[j].params.spot.screen,
  178.                     &sprocs[j], 0, 0, mem);
  179.                 if ( code < 0 )
  180.                     break;
  181.                 /* falls through */
  182.               case ht_type_threshold:
  183.                 if ( !r_has_type(tprocs + j, t__invalid) )
  184.                 {    /* Schedule TransferFunction sampling. */
  185.                     /****** check_xstack IS WRONG ******/
  186.                     check_ostack(zcolor_remap_one_ostack);
  187.                     check_estack(zcolor_remap_one_estack);
  188.                     code = zcolor_remap_one(tprocs + j,
  189.                         op, porder->transfer, igs,
  190.                         zcolor_remap_one_finish);
  191.                     op = osp;
  192.                 }
  193.                 break;
  194.               default:    /* not possible here, but to keep */
  195.                     /* the compilers happy.... */
  196.                 ;
  197.               }
  198.             if ( code < 0 )
  199.               {    /* Restore the stack. */
  200.                 ref_stack_pop_to(&o_stack, odepth);
  201.                 ref_stack_pop_to(&e_stack, edepth);
  202.                 op = osp;
  203.                 op[-1] = odict;
  204.                 *op = odict5;
  205.                 break;
  206.               }
  207.             npop = 0;
  208.           }
  209.       }
  210.     if ( code < 0 )
  211.       {    gs_free_object(mem, pdht, ".sethalftone5");
  212.         gs_free_object(mem, phtc, ".sethalftone5");
  213.         gs_free_object(mem, pht, ".sethalftone5");
  214.         return code;
  215.       }
  216.     pop(npop);
  217.     return o_push_estack;
  218. }
  219. /* Install the halftone after sampling. */
  220. private int
  221. sethalftone_finish(os_ptr op)
  222. {    gx_device_halftone *pdht = r_ptr(esp, gx_device_halftone);
  223.     int code;
  224.     if ( pdht->components )
  225.         pdht->order = pdht->components[0].corder;
  226.     code = gx_ht_install(igs, r_ptr(esp - 1, gs_halftone), pdht);
  227.     if ( code < 0 )
  228.         return code;
  229.     istate->halftone = esp[-2];
  230.     esp -= 4;
  231.     sethalftone_cleanup(op);
  232.     return o_pop_estack;
  233. }
  234. /* Clean up after installing the halftone. */
  235. private int
  236. sethalftone_cleanup(os_ptr op)
  237. {    gx_device_halftone *pdht = r_ptr(&esp[4], gx_device_halftone);
  238.     gs_halftone *pht = r_ptr(&esp[3], gs_halftone);
  239.  
  240.     gs_free_object(pdht->rc.memory, pdht,
  241.                "sethalftone_cleanup(device halftone)");
  242.     gs_free_object(pht->rc.memory, pht,
  243.                "sethalftone_cleanup(halftone)");
  244.     return 0;
  245. }
  246.  
  247. /* ------ Initialization procedure ------ */
  248.  
  249. BEGIN_OP_DEFS(zht2_l2_op_defs) {
  250.         op_def_begin_level2(),
  251.     {"2.sethalftone5", zsethalftone5},
  252.         /* Internal operators */
  253.     {"0%sethalftone_finish", sethalftone_finish},
  254. END_OP_DEFS(0) }
  255.  
  256. /* ------ Internal routines ------ */
  257.  
  258. /* Extract frequency, angle, spot function, and accurate screens flag */
  259. /* from a dictionary. */
  260. private int
  261. dict_spot_params(const ref *pdict, gs_spot_halftone *psp,
  262.   ref *psproc, ref *ptproc)
  263. {    int code;
  264.     check_dict_read(*pdict);
  265.     if ( (code = dict_float_param(pdict, "Frequency", 0.0,
  266.                       &psp->screen.frequency)) != 0 ||
  267.          (code = dict_float_param(pdict, "Angle", 0.0,
  268.                       &psp->screen.angle)) != 0 ||
  269.          (code = dict_proc_param(pdict, "SpotFunction", psproc, false)) != 0 ||
  270.          (code = dict_bool_param(pdict, "AccurateScreens",
  271.                      gs_currentaccuratescreens(),
  272.                      &psp->accurate_screens)) < 0 ||
  273.          (code = dict_proc_param(pdict, "TransferFunction", ptproc, false)) < 0
  274.        )
  275.         return (code < 0 ? code : e_undefined);
  276.     psp->transfer = (code > 0 ? (gs_mapping_proc)0 : gs_mapped_transfer);
  277.     return 0;
  278. }
  279.  
  280. /* Set actual frequency and angle in a dictionary. */
  281. private int
  282. dict_real_result(ref *pdict, const char _ds *kstr, floatp val)
  283. {    int code = 0;
  284.     ref *ignore;
  285.     if ( dict_find_string(pdict, kstr, &ignore) > 0 )
  286.     {    ref rval;
  287.         check_dict_write(*pdict);
  288.         make_real(&rval, val);
  289.         code = dict_put_string(pdict, kstr, &rval);
  290.     }
  291.     return code;
  292. }
  293. private int
  294. dict_spot_results(ref *pdict, const gs_spot_halftone *psp)
  295. {    int code;
  296.     code = dict_real_result(pdict, "ActualFrequency",
  297.                 psp->screen.actual_frequency);
  298.     if ( code < 0 )
  299.         return code;
  300.     return dict_real_result(pdict, "ActualAngle",
  301.                 psp->screen.actual_angle);
  302. }
  303.  
  304. /* Extract width, height, and thresholds from a dictionary. */
  305. private int
  306. dict_threshold_params(const ref *pdict, gs_threshold_halftone *ptp,
  307.   ref *ptproc)
  308. {    int code;
  309.     ref *tstring;
  310.     check_dict_read(*pdict);
  311.     if ( (code = dict_int_param(pdict, "Width", 1, 0x7fff, -1,
  312.                     &ptp->width)) < 0 ||
  313.          (code = dict_int_param(pdict, "Height", 1, 0x7fff, -1,
  314.                     &ptp->height)) < 0 ||
  315.          (code = dict_find_string(pdict, "Thresholds", &tstring)) <= 0 ||
  316.          (code = dict_proc_param(pdict, "TransferFunction", ptproc, false)) < 0
  317.        )
  318.         return (code < 0 ? code : e_undefined);
  319.     check_read_type_only(*tstring, t_string);
  320.     if ( r_size(tstring) != (long)ptp->width * ptp->height )
  321.       return_error(e_rangecheck);
  322.     ptp->thresholds.data = tstring->value.const_bytes;
  323.     ptp->thresholds.size = r_size(tstring);
  324.     ptp->transfer = (code > 0 ? (gs_mapping_proc)0 : gs_mapped_transfer);
  325.     return 0;
  326. }
  327.